SSH認証なしでgit clone
HTTP通信を使えば、
GitHubで使うSSH鍵を生成
して登録とかやらずに
git clone
できる
e.g.
git clone https://github.com/takker99/dotfiles.git
欠点
当然だが
git push
できなくなる
読み取り専用のrepoになるため
後で
git remote
でSSHに変更すれば問題ない
http://tech.nitoyon.com/ja/blog/2013/01/11/github-clone-http/
e.g.
git remote set-url origin git@github.com:takker99/dotfiles.git
#2021-10-04
21:32:13